home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 01 getting started with net / vbcdemo / test.vb < prev    next >
Encoding:
Text File  |  2001-09-06  |  341 b   |  14 lines

  1. Module Module1
  2.     Sub Main()
  3.         Dim x As Double, res As Double
  4.         x = 12.5
  5.         res = Add(x, 46.5)
  6.         System.Console.Write("The result is ")
  7.         System.Console.WriteLine(res)
  8.     End Sub
  9.  
  10.     Function Add(ByVal n1 As Double, ByVal n2 As Double) As Double
  11.         Add = n1 + n2
  12.     End Function
  13. End Module
  14.